#! /bin/bash

if [ -f $DSTROOT/Mabel.app/Contents/Resources/Prompts/_go.wav ]; then
# Preserve the mcf files in /tmp; rename the 17-24 bell one.
	FROMDIR="Mabel.app/Contents/Resources"
	TODIR="/tmp/__abelsim"
	mkdir $TODIR
	mv $DSTROOT/$FROMDIR/Methods/* $TODIR
	mv $TODIR/"17-24 bell.mcf" $TODIR/"17-24 bell.old.mcf"
else
# Leave a marker for the post-script
	mkdir /tmp/__abelsimBAD
fi
